diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/poa/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/poa/page.tsx | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/poa/page.tsx b/app/[lng]/evcp/(evcp)/poa/page.tsx index dec5e05b..e0172af3 100644 --- a/app/[lng]/evcp/(evcp)/poa/page.tsx +++ b/app/[lng]/evcp/(evcp)/poa/page.tsx @@ -8,7 +8,7 @@ import { Shell } from "@/components/shell" import { getChangeOrders } from "@/lib/poa/service" import { searchParamsCache } from "@/lib/poa/validations" import { ChangeOrderListsTable } from "@/lib/poa/table/poa-table" - +import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise<SearchParams> } @@ -31,9 +31,12 @@ export default async function IndexPage(props: IndexPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 변경 PO 확인 및 전자서명 - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 변경 PO 확인 및 전자서명 + </h2> + <InformationButton pageCode="evcp/poa" /> + </div> <p className="text-muted-foreground"> 발행된 PO의 변경 내역을 확인하고 관리할 수 있습니다. </p> |
